home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: objects.e V1.0
- **
- ** Object definitions.
- **
- ** (C) Copyright 1996-1998 DreamWorld Productions.
- ** All Rights Reserved.
- */
-
- OPT MODULE
- OPT EXPORT
- OPT PREPROCESS
-
- MODULE 'gms/dpkernel/dpkernel','gms/system/register','gms/files/segments'
-
- /****************************************************************************
- ** Object entries.
- */
-
- OBJECT objectentry /* Entry stucture for GetObjectList() */
- name :PTR TO CHAR /* Pointer to the name, may be NULL */
- object :LONG /* Object is returned here */
- ENDOBJECT
-
- OBJECT dataheader /* Private structure for object headers */
- type :LONG /* Type of object, eg STRC, CODE, DATA */
- next :LONG /* Offset towards next object */
- ENDOBJECT
-
- /*****************************************************************************
- ** Object-File.
- */
-
- CONST VER_OBJECTFILE = 1,
- TAGS_OBJECTFILE = $FFFB0000 OR ID_OBJECTFILE
-
- OBJECT objectfile
- head[1] :ARRAY OF head
- source :LONG
- ENDOBJECT
-
- CONST OBJA_Source = 12 OR TAPTR
-
-